home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / italian / templates / method.tmpl < prev    next >
Encoding:
Text File  |  2004-09-15  |  237 b   |  13 lines

  1. /**
  2.  * Esempio di metodo - sostituisci questo commento con i tuoi
  3.  *
  4.  * @param  y   un parametro di esempio per un metodo
  5.  * @return     il valore restituito
  6.  */
  7. public int sampleMethod(int y)
  8. {
  9.     // metti qui il tuo codice
  10.     return y;
  11. }
  12.  
  13.